home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2004 #6
/
Amiga Plus CD - 2004 - No. 06.iso
/
AmigaPlus
/
Begleitmaterial
/
50Tools
/
Grafik
/
PerfectPaint
/
rexx
/
circle
/
AnimPulsar.rx
< prev
next >
Wrap
Text File
|
1999-01-30
|
247b
|
21 lines
/* Circle arexx test
Anim Pulsar*/
options results
parse ARG Port x1 y1 r b
ADDRESS value Port
pp_CountFrames
nb=result
IF nb<2 then DO
pp_Warn 'Make*an*Anim*first.'
EXIT
END
do i=1 to r
pp_Circle x1 y1 i
pp_NextFrame
end